From 2b58d83a493f8bd62b5e70a3adab001c34da097c Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 6 Aug 2014 18:45:32 -0700 Subject: [PATCH] Don't match the output of the submodule test Apparently really old versions of git ignore --quiet and print things anyway, causing the test to fail on the linux buildbot. --- tests/test_cargo_compile_git_deps.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tests/test_cargo_compile_git_deps.rs b/tests/test_cargo_compile_git_deps.rs index ed7c38ef9..d15977dce 100644 --- a/tests/test_cargo_compile_git_deps.rs +++ b/tests/test_cargo_compile_git_deps.rs @@ -718,14 +718,7 @@ test!(dep_with_submodule { let git_root = git_project.url(); assert_that(project.cargo_process("cargo-build"), - execs() - .with_stdout(format!("{} git repository `{}`\n\ - {} dep1 v0.5.0 ({}#[..])\n\ - {} foo v0.5.0 ({})\n", - UPDATING, git_root, - COMPILING, git_root, - COMPILING, root)) - .with_stderr("")); + execs().with_stderr("").with_status(0)); }) test!(two_deps_only_update_one { -- 2.30.2